/**** HTML TAGS ****/
html {
    height: 100%;
}
body {
    background-image: linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -o-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -moz-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -webkit-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -ms-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.01, rgb(47,94,115)),
        color-stop(0.65, rgb(62,121,148))
        
    );
    font-family:Arial, Verdana, sans-serif;
    font-size:1em;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@media all and (max-width:800px) {
    body {
        font-size:1em;
    }
}
@media all and (max-width:400px) {
    body {
        font-size:0.6em;
    }
}

/**** CSS CLASSES ****/
.sessionBlock {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
    background-color:white;
}
.hourHeader {
    border-top:1px solid #8AD17A;
    border-bottom:1px solid #8AD17A;
    padding-left:1em;
    padding-top:0.2em;
    padding-bottom:0.2em;
	text-align: left;
	background-color:#C6ECB1;
    color:#5F7F55;
}
.sessionName {
	padding-left:1em;
    padding-top:0.5em;
    padding-bottom:0.8em;
	text-align: left;
    font-size:1.3em;
    color:#28292A;
}
.speakers {
    font-size:0.8em;
    font-style:italic;
    color:grey;
}
.sessionContent {
	text-align: left;
	padding-left:1.2em;    
    padding-bottom:0.5em;
    color:#28292A;
    font-family:Verdana, Arial, sans-serif;
    font-size:1.1em;
}
.footerText {
    color:white;
    padding:0.2em;
    font-size:0.9em;
}
/**** CSS CONTAINERS ****/
#eventTitle {
    font-size:1.2em;
    background-image: linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -o-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -moz-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -webkit-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    background-image: -ms-linear-gradient(bottom, rgb(47,94,115) 1%, rgb(62,121,148) 65%);
    
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.01, rgb(47,94,115)),
        color-stop(0.65, rgb(62,121,148))
        
    );    
    color:#EFEFEF;
    padding:0.3em;
    text-align:center;
    border-bottom:1px solid #2B4655;    
}
#menuDays {    
	font-size:1.4em;
	width: 100%;	
	background: #4D555E;
    color:white;
    padding-top:0.3em;
    padding-bottom:0.3em;
}
#menuLocations {
    font-size:1.7em;
	width: 100%;	
    color:#133B44;
    padding-top:0.3em;
    padding-bottom:0.3em;
}
#previousDay {
	cursor: pointer;
	width: 8%;
    padding-top:0.2em;
    padding-bottom:0.2em;
}
#nextDay {
	cursor: pointer;
	width: 8%;
    padding-top:0.2em;
    padding-bottom:0.2em;
}
#previousLocation {
	cursor: pointer;
	width: 8%;
    padding-top:0.3em;
    padding-bottom:0.3em;
}
#nextLocation {
	cursor: pointer;
	width: 8%;
    padding-top:0.3em;
    padding-bottom:0.3em;
}
#selectedDay {
	width: 78%;
}
#selectedLocation {
	width: 78%;
}
#program {
    border-bottom:1px solid #8AD17A;
}
#programContent {    
    background-image: linear-gradient(bottom, rgb(149,196,199) 1%, rgb(178,230,232) 70%);
    background-image: -o-linear-gradient(bottom, rgb(149,196,199) 1%, rgb(178,230,232) 70%);
    background-image: -moz-linear-gradient(bottom, rgb(149,196,199) 1%, rgb(178,230,232) 70%);
    background-image: -webkit-linear-gradient(bottom, rgb(149,196,199) 1%, rgb(178,230,232) 70%);
    background-image: -ms-linear-gradient(bottom, rgb(149,196,199) 1%, rgb(178,230,232) 70%);
    
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.01, rgb(149,196,199)),
        color-stop(0.7, rgb(178,230,232))
    );    
}